home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.06c
- // Copyright (C) 1990, 1991, 1992
- // Software Dimensions
- //
- // FusionWindow
- //
-
- #include "fliwin.h"
-
- #ifdef __BCPLUSPLUS__
- #pragma hdrstop
- #endif
-
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- //
- // LastWindow()
- //
- // Jump to the last window in the stack
- //
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
- void FusionWindow::LastWindow()
- {
- if (NumberOfWindows<2)
- return;
-
- WindowElement *Save=Windows[NumberOfWindows-1];
- Windows[0]->Active=0;
- Save->Active=1;
- for (int i=NumberOfWindows-1;i;i--)
- Windows[i]=Windows[i-1];
- Windows[0]=Save;
-
- RemoveAllMenus();
- RefreshWindows();
- }
-
-